home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 26
/
CU Amiga Magazine's Super CD-ROM 26 (1998)(EMAP Images)(GB)[!][issue 1998-09].iso
/
CUCD
/
Utilities
/
MARInA
/
Install-Guide
/
Start_Rexx.script
< prev
Wrap
Text File
|
1998-05-26
|
1KB
|
70 lines
; Start Rexxmaster and RexxReqtools
;deliver rexxmast and rxlib if not existent on the host system
setenv Msg Rexx_log
if ${Flags/REXX_INSTALLED} eq 1
skip END
endif
if not exists sys:system
c/makedir sys:system
setenv MsgFlag 1 ;for signalling if $Msg must be popped up
endif
if not exists sys:system/rexxmast
skip Create
endif
;this should be standard on up-to-date systems, but who
;knows if any user has deleted those libraries? Keep sure...
;so everything will work properly.
if not exists sys:libs/reqtools.library
skip Create
endif
if not exists sys:libs/rexxreqtools.library
skip Create
endif
if not exists SYS:libs/rexxsupport.library
skip Create
endif
if not exists SYS:libs/rexxsyslib.library
skip Create
endif
if not exists sys:rexxc
skip Create
endif
if not exists sys:rexxc/rxlib
skip Create
endif
if not exists sys:rexxc/rx
skip Create
endif
Lab Create
c/copy /sys/Inst_rexx SYS: CLONE ALL QUIET
setenv MsgFlag 1
run >NIL: sys:system/rexxmast
wait 1
sys:rexxc/rxlib rexxsupport.library 0 -30
sys:rexxc/rxlib rexxreqtools.library 0 -30
if not exists ENV:Flags
makedir ENV:Flags
endif
setenv Flags/REXX_INSTALLED 1
Lab End